This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Yentl Kifreeterynds 5.Jan.04 04:08 PM a Web browser Domino Designer6.0.1Windows 2003
Hi all,
I have succesfully added person to group using this code;
Sub Click(Source As Button)
Dim uidoc As NotesUIDocument
Dim session As New NotesSession
Dim adminp As NotesAdministrationProcess
Dim ws As New NotesUIWorkspace
Set uidoc = ws.CurrentDocument
Set adminp = _
session.CreateAdministrationProcess("Domino/ilsan")
Dim guys(1) As String
guys(0) = uidoc.FieldGetText("names")
noteid$ = adminp.AddGroupMembers("Z_ZSatinalma", guys)
If noteid$ <> "" Then
Dim db As New NotesDatabase("Domino/ilsan", "admin4")
Call ws.EditDocument(False, db.GetDocumentByID(noteid$))
End If
End Sub
But I couldn't find anything remove group member. Is it possible to remove group member from address book?